<!DOCTYPE html>
<html>
<body>

<h1>ESM Task Help Simulator</h1>
<p>Click the button to create a window and load the Task List into it.</p>

<button onclick="myFunction()">Open Task List</button>

<script>
function myFunction() {
    var myWindow = window.open("", "TaskListWindow", "width=500, height=600, scrollbars=1, resizable=1");
    myWindow.document.location = "task_help.html";
	
}
</script>

</body>
</html>
